home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / scope / 151-175 / scopedisk161 / curses / examples / bio / date.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-03-19  |  217 b   |  15 lines

  1. #include <time.h>
  2.  
  3. todays_date()
  4. {
  5.     extern int today, this_month, this_year;
  6.     struct tm *p;
  7.     long t;
  8.  
  9.     time(&t);
  10.     p = localtime(&t);
  11.     today = p->tm_mday;
  12.     this_month = p->tm_mon + 1;
  13.     this_year = p->tm_year + 1900;
  14. }
  15.